分享至
VScode:
Step 1開啟index.html存擋
Step 2開啟all.js存擋
Step 3在index.html檔案裡的「head」加上all.js的連結
<script src="all.js"></script>
Step 4在all.js測試
let a = 1 ; let b = 2 ; alert(a); console.log(a,b);
Step 5開啟網頁console部分會顯示出1 2alert(a);會跳出
IT邦幫忙